home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOpus Plus
/
DOpus Plus.iso
/
Tutorial
/
ARexx Tutorial
/
TuteRexx
/
DOpusSound.dopus5
< prev
next >
Wrap
Text File
|
1998-11-07
|
681b
|
16 lines
/* DOpusSound.dopus5 */
options results
address 'DOPUS.1'
dopus front
address command 'Copy "DOplus:tutorial/Arexx Tutorial/Warning" RAM: QUIET'
dopus query sound "'Open Lister'"
oldsound = result
dopus set sound "'Open Lister'" "'RAM:warning'" 64 /* Set the new sound */
lister new /* Open a lister */
handle = result /* Store it's handle */
address command wait 3 /* Wait 3 seconds */
lister close handle /* Close the lister */
dopus set sound "'Open Lister'" oldsound 64 /* Restore the old sound */
call delete('RAM:Warning')
exit